682b766e216fa397a919b36e637645b4d47611df,plugins/org.eclipse.xtext.xtend2/src/org/eclipse/xtext/xtend2/compiler/Xtend2Compiler.java,RichStringPrepareCompiler,writeIf,#XExpression#,345
Before Change
internalToJavaStatement(condition, appendable, true);
appendable.append("if (");
internalToJavaExpression(condition, appendable);
appendable.append(") {").increaseIndentation().append("\n");
}
protected void writeElse() {
After Change
appendable.append("\n");
appendable.append("if (");
internalToJavaExpression(condition, appendable);
appendable.append(") {").increaseIndentation();
}
protected void writeElse() {